מ ע " ב םילעפמו תוכרעמ רימש

Size: px
Start display at page:

Download "מ ע " ב םילעפמו תוכרעמ רימש"

Transcription

1 SMS Gateway Interface Format... 3 Simple Xml example... 3 Advance Xml example... 4 Response XML... 5 Delivery Notification... 6 Message character length... 7 C# example... 8 PHP example VB example

2 Format Client should perform Http Post request to this URL. The encoding should be UTF-8. Using Dot Net Programming: Message text must be escaped with System.Security.SecurityElement.Escape. XML must be encoded by HttpUtility.UrlEncode(xml,.Text.Encoding.UTF8) Simple Xml example <Inforu> <User> <Username>MyUsername</Username> <Password>MyPassword</Password> </User> <Content Type="sms"> <Message>This is a test SMS Message</Message> </Content> <Recipients> <PhoneNumber> ; </PhoneNumber> </Recipients> <Settings> <SenderNumber> </SenderNumber> </Settings> </Inforu> Explanation of XML structure: UserName - Username of the account that was supplied by InforUMobile Password - Password of the account. Message SMS message that need to be sent. PhoneNumber the recipients phone list. Can be multiple recipients devided by ";" SenderNumber The number that will be displayed on the recipient phone as the sender

3 Advance Xml example <Inforu> <User> <Username>MyUserName</Username> <Password>MyPassword</Password> </User> <Content Type="sms"> <Message> This is a test SMS Message </Message> <MessagePelephone> This is a test SMS Message for Pelephone</MessagePelephone> <MessageCellcom> This is a test SMS Message for Cellcom </MessageCellcom> <MessageOrange> This is a test SMS Message for Orange </MessageOrange> <MessageMirs> This is a test SMS Message for Mirs </MessageMirs> </Content> <Recipients> <PhoneNumber> ; </PhoneNumber> <GroupNumber>5</GroupNumber> </Recipients> <Settings> <SenderName>Inforu</SenderName> <SenderNumber> </SenderNumber> <CustomerMessageID>112233</CustomerMessageID> <CustomerParameter>AffId4</CustomerParameter> <MessageInterval>0</MessageInterval> <TimeToSend>12/3/ :23</TimeToSend> <DeliveryNotificationUrl> <MaxSegments>0</MaxSegments> </Settings> </Inforu> Explanation of XML structure (All the following parameters are optional): SenderName The "SenderName" field is restricted to a maximum of 11 latin characters, and supported only in CELLCOM and ORANGE networks. In PELEPHONE and MIRS networks the "SenderName" will be replaced by "SenderNumber". Using the "SenderName" field overwrites the "SenderNumber" and not allowing the recipient to use the "reply" option on his phone. If omitted SenderNumber" will be used. MessagePelephone Use this parameter to send a message to Pelephone recipients. If omitted the Message parameter will be use. MessageCellcom Use this parameter to send a message to Cellcom recipients. If omitted the Message parameter will be use. MessageOrange Use this parameter to send a message to Orange recipients. If omitted the Message parameter will be use. MessageMirs - Use this parameter to send a message to Mirs recipients. If omitted the Message parameter will be use. GroupNumber - Use this parameter in order to send message to group according to the group defined in the web site. To send to multiple group please use ";". CustomerMessageID - Message ID on the client application. When confirmation on delivery is sent back to the client, the message ID is sent also for synchronization. CustomerParameter - Parameter set by the client that can be seen later in reports. Can be used for example to mark each message with affiliate Id

4 MessageInterval - Sending messages with number of seconds interval between them The value 0 means not interval. TimeToSend the requested date and time on which the messages will be sent. Please use the following format: dd/m/yyyy hh:mm DeliveryNotificationUrl - needed in order to send confirmation on delivery to the client. The system will perform Http post to this URL with notification information. MaxSegments when sending long messages, this parameter allow the client to set the maximum number of segments per message. Value 0 mean- unlimited segments. Response XML Explanation of Response XML structure: <Result> <Status></Status > <Description></ Description> <NumberOfRecipients></ NumberOfRecipients> </Result> 1. Status: OK=1, Failed=-1, BadUserNameOrPassword=-2, UserNameNotExists=-3, PasswordNotExists=-4, RecipientsDataNotExists=-6, MessageTextNotExists=-9, IllegalXML=-11, UserQuotaExceeded=-13, ProjectQuotaExceeded=-14, CustomerQuotaExceeded=-15, WrongDateTime=-16, WrongRecipients=-18, InvalidSenderNumber=-20, InvalidSenderName=-21, UserBlocked=-22, UserAuthenticationError=-26, NetworkTypeNotSupported=-28, NotAllNetworkTypesSupported=-29, 2. Description action verbal description. 3. NumberOfRecipients - phone numbers that the message has been sent

5 Delivery Notification The client can receive confirmation on delivery on each message sent. When sending the message the client should use the CustomerMessageID and the DeliveryNotificationUrl parameters. The system perform Http Post request to this URL about any message. The parameters for the request are: PhoneNumber the number of the recipient. Network the network of the recipient Status the status of the message. o (2) Delivered. o (-2) Not delivered. o (-4) Blocked by InforuMobile. StatusDescription If not delivered, contains the reason. CustomerMessageId the client message Id. SegmentsNumber - The amount of segments in the message Delivery Notification Example URL: with parameters: PhoneNumber= &Network=052&Status=2&StatusDescription=Message delivered&customermessageid=111&segmentsnumber=2-6 -

6 Message character length Operator Hebrew English Remarks Cellcom Orange Pelephone Mirs Supports concatenation. 70/160 chars 1 message 71/ each message contain 67 chars Hebrew (154 chars English) but all the messages appears as one message on the phone. Supports concatenation. 70/160 chars 1 message 71/ each message contain 67 chars Hebrew (154 chars English) but all the messages appears as one message on the phone. Does not support concatenation. Message will be divided to 126 chars in each segment. Does not support concatenation. Message will be divided to 70 chars Hebrew (140 chars English) in each segment

7 C# example //set password, user name, message text, semder name and number string username = "UserName"; string password = "UserPassword"; string messagetext = System.Security.SecurityElement.Escape("Message text"); string sendername = "MySender"; string sendernumber = "1111"; //set phone numbers string phoneslist = " ; ; ; ; "; //set additional parameters string timetosend = "02/12/ :30"; // create XML StringBuilder sbxml = new StringBuilder(); sbxml.append("<inforu>"); sbxml.append("<user>"); sbxml.append("<username>" + username + "</Username>"); sbxml.append("<password>" + password + "</Password>"); sbxml.append("</user>"); sbxml.append("<content Type=\"sms\">"); sbxml.append("<message>" + messagetext + "</Message>"); sbxml.append("</content>"); sbxml.append("<recipients>"); sbxml.append("<phonenumber>" + phoneslist + "</PhoneNumber>"); sbxml.append("</recipients>"); sbxml.append("<settings>"); sbxml.append("<sendername>" + sendername + "</SenderName>"); sbxml.append("<sendernumber>" + sendernumber + "</SenderNumber>"); sbxml.append("<messageinterval>" + messageinterval + "</MessageInterval>"); sbxml.append("<timetosend>" + timetosend + "</TimeToSend>"); sbxml.append("</settings>"); sbxml.append("</inforu >"); string strxml = HttpUtility.UrlEncode(sbXml.ToString(), System.Text.Encoding.UTF8); string result = PostDataToURL(" "InforuXML=" + strxml); static string PostDataToURL(string szurl, string szdata) //Setup the web request string szresult = string.empty; WebRequest Request = WebRequest.Create(szUrl); Request.Timeout = 30000; Request.Method = "POST"; Request.ContentType = "application/x-www-form-urlencoded"; //Set the POST data in a buffer byte[] PostBuffer; try - 8 -

8 // replacing " " with "+" according to Http post RPC szdata = szdata.replace(" ", "+"); //Specify the length of the buffer PostBuffer = Encoding.UTF8.GetBytes(szData); Request.ContentLength = PostBuffer.Length; //Open up a request stream Stream RequestStream = Request.GetRequestStream(); //Write the POST data RequestStream.Write(PostBuffer, 0, PostBuffer.Length); //Close the stream RequestStream.Close(); //Create the Response object WebResponse Response; Response = Request.GetResponse(); //Create the reader for the response StreamReader sr = new StreamReader(Response.GetResponseStream(), Encoding.UTF8); //Read the response szresult = sr.readtoend(); //Close the reader, and response sr.close(); Response.Close(); return szresult; catch (Exception e) return szresult; - 9 -

9 PHP example function send_sms($msg, $recepients) $msg = str_replace('<', '%26lt;', $msg); // "Cleans" the message from unsafe notes $msg = str_replace('>', '%26gt;', $msg); // "Cleans" the message from unsafe notes $msg = str_replace('\"', '%26quot;', $msg); // "Cleans" the message from unsafe notes $msg = str_replace("\'", '%26apos;', $msg); // "Cleans" the message from unsafe notes $msg = str_replace("&", '%26amp;', $msg); // "Cleans" the message from unsafe notes $msg = str_replace("\r\n", '%0D%0A', $msg); // "Cleans" the message from enter $message_text = $msg; $sms_host = " api.inforu.co.il"; // Application server's URL; $sms_port = 80; // Application server's PORT; $sms_path = "/SendMessageXml.ashx"; // Application server's PATH; // EDIT THE FOLLOWING LINES $sms_user = "USERNAME"; // User Name (Provided by Inforu) ; $sms_password = "PASSWORD"; // Password (Provided by Inforu) ; $sms_sender_name = "MyCompany"; // The SMS sender's will appear only on Cellcom & Partner's phones (Optional, only English characters, 11 max. ); $sms_sender_num = "1315"; // The number that this SMS will be sent from; $message_text = str_replace (" ", "%20", $message_text); // Encodes spaces into "%20" in the URL; $query = 'InforuXML='. urlencode('<inforu><user><username>'. $sms_user.'</username><password>'. $sms_password.'</password></user><content Type="sms"><Message>'). $message_text.urlencode('</message></content><recipients><phonenumber>'. $recepients.'</phonenumber></recipients><settings>><sendername>'. $sms_sender_name.'</sendername><sendernumber>'. $sms_sender_num.'</sendernumber><customerparameter>'. $customer_parameter.'</customerparameter></settings></inforu>'); $fp = fsockopen("$sms_host", $sms_port, $errno, $errstr, 30); // Opens a socket to the Application server if (!$fp) // Verifies that the socket has been opened and sending the message; echo "$errstr ($errno)<br />\n"; else $out = "GET $sms_path?$query HTTP/1.1\r\n"; $out.= "Host: $sms_host\r\n"; $out.= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) echo fgets($fp, 128); // Echos the respond from application server (you may replace this line with an "Message has been sent" message); fclose($fp);

10 VB example Important: need to add reference to System.Web.dll 'set password, user name, message text, semder name and number Dim username As String = "UserName" Dim password As String = "UserPassword" Dim messagetext As String = System.Security.SecurityElement.Escape("Message text") Dim sendername As String = "MySender" Dim sendernumber As String = "1111" Dim messageinterval As Integer = 0 'set phone numbers Dim phoneslist As String = " ; ; ; ; " 'set additional parameters Dim timetosend As String = "02/12/ :30" ' create XML Dim sbxml As New Text.StringBuilder() sbxml.append("<inforu>") sbxml.append("<user>") sbxml.append("<username>" & username & "</Username>") sbxml.append("<password>" & password & "</Password>") sbxml.append("</user>") sbxml.append("<content Type=""sms"">") sbxml.append("<message>" & messagetext & "</Message>") sbxml.append("</content>") sbxml.append("<recipients>") sbxml.append("<phonenumber>" & phoneslist & "</PhoneNumber>") sbxml.append("</recipients>") sbxml.append("<settings>") sbxml.append("<sendername>" & sendername & "</SenderName>") sbxml.append("<sendernumber>" & sendernumber & "</SenderNumber>") sbxml.append("<messageinterval>" & messageinterval & "</MessageInterval>") sbxml.append("<timetosend>" & timetosend & "</TimeToSend>") sbxml.append("</settings>") sbxml.append("</inforu >") Dim strxml As String = System.Web.HttpUtility.UrlEncode(sbXml.ToString(), System.Text.Encoding.UTF8) Dim result As String = PostDataToURL(" "InforuXML=" & strxml) Private Function PostDataToURL(ByVal szurl As String, ByVal szdata As String) As String 'Setup the web request Dim szresult As String = String.Empty Dim Request As Net.HttpWebRequest Request = CType(System.Net.WebRequest.Create(szUrl), System.Net.HttpWebRequest) Request.Timeout = Request.Method = "POST" Request.ContentType = "application/x-www-form-urlencoded" 'Set the POST data in a buffer

11 Dim PostBuffer As Byte() Try ' replacing " " with "+" according to Http post RPC szdata = szdata.replace(" ", "+") 'Specify the length of the buffer PostBuffer = System.Text.Encoding.UTF8.GetBytes(szData) Request.ContentLength = PostBuffer.Length 'Open up a request stream Dim RequestStream As IO.Stream = Request.GetRequestStream() 'Write the POST data RequestStream.Write(PostBuffer, 0, PostBuffer.Length) 'Close the stream RequestStream.Close() 'Create the Response object Dim Response As Net.HttpWebResponse Response = CType(Request.GetResponse(), System.Net.HttpWebResponse) 'Create the reader for the response Dim sr As New IO.StreamReader(Response.GetResponseStream(), System.Text.Encoding.UTF8) 'Read the response szresult = sr.readtoend() 'Close the reader, and response sr.close() Response.Close() Return (szresult) Catch e As Exception Return (szresult) End Try End Function

SMS Gatewa y Interface

SMS Gatewa y Interface SMS Gateway Interface Format... 3 Simple Xml example... 3 Advance Xml example... 4 Response XML... 5 Delivery Notification... 6 Delivery Notification Example... 6 Message character length... 6 C# example...

More information

Quick Start. SLNG Basic API Instruction for Version 5.5 שרה אמנו 39/21 מודיעין I טל' I פקס

Quick Start. SLNG Basic API Instruction for  Version 5.5 שרה אמנו 39/21 מודיעין I טל' I פקס Quick Start SLNG Basic API Instruction for Email Version 5.5 1 Contents Introduction... 4 Sending Email using HTTP JSON Post Interface... 5 Sending Email JSON format... 5 Fields Description Request...

More information

BULK HTTP API DOCUMENTATION

BULK HTTP API DOCUMENTATION BULK HTTP API DOCUMENTATION Version 1.4 Sending Message Via HTTP API INTRODUCTION This HTTP API document will help you use the push platform to send SMS messages through Query String over HTTP/HTTPS. The

More information

HTTPS API Specifications

HTTPS API Specifications HTTPS API Specifications June 17, 2016 P a g e 1 - HTTPS API Specifications Contents HTTPS API Overview... 3 Terminology... 3 Process Overview... 3 Parameters... 4 Responses... 5 Examples... 6 PERL on

More information

API/balanceinfo.php?username=test&password= xxxxx

API/balanceinfo.php?username=test&password= xxxxx HTTP API codes Single Number: https://smschilly.in/sms_api/sendsms.php?username=test&password=xxx xx&mobile=9xxxxxxxxx&sendername=testee&message=test msg&routetype=0 Note:RouteTypemeans 0-promotional;1-Transactional;2-Promo

More information

EPHONE protocol Version 3.5.1

EPHONE protocol Version 3.5.1 EPHONE protocol Version 3.5.1 Version History Version V 3.5.0 V 3.5.1 Date 01-04-2010 01-04-2010 Description Issue Control Approved by Nissim Trujman Title Description 1 Table of Contents 1. Xml Http Protocol...3

More information

API Application Programmers Interface

API Application Programmers Interface API Application Programmers Interface Version 2.02 Oct 2017 For more information, please contact: Technical Team T: +44 (0)1903 550 242 E: info@24x.com Page2 Contents Overview... 3 API Application Interface...

More information

All requests must be authenticated using the login and password you use to access your account.

All requests must be authenticated using the login and password you use to access your account. The REST API expects all text to be encoded as UTF-8, it is best to test by sending a message with a pound sign ( ) to confirm it is working as expected. If you are having issues sending as plain text,

More information

version 2.0 HTTPS SMSAPI Specification Version 1.0 It also contains Sample Codes for -.Net - PHP - Java

version 2.0 HTTPS SMSAPI Specification Version 1.0 It also contains Sample Codes for -.Net - PHP - Java HTTPS SMS API SPEC version 2.0 HTTPS SMSAPI Specification This document contains HTTPS API information about - Pushing SMS, - Pushing Unicode SMS, - Scheduling SMS - Checking SMS credits, Version 1.0 -

More information

Gatesms.eu Mobile Solutions for Business

Gatesms.eu Mobile Solutions for Business TECHNICAL SPECIFICATIONS XML Web API GATESMS.EU, version 1.1 Prepared by: Gatesms.eu Contents Document version history...3 Security...3 General requirements...3 HTTP transmission security mechanism...3

More information

string signature = CreateSignature(secretKey, messagerepresentation); // hwce6v2ka0kkb0gbbik0gsw5qacs3+vj+m+wn/8k9ee=

string signature = CreateSignature(secretKey, messagerepresentation); // hwce6v2ka0kkb0gbbik0gsw5qacs3+vj+m+wn/8k9ee= Code Examples See also this tutorial for more information about using the ASP.NET web API client libraries. Making a GET request Let's read orders created after a particular date. For security reasons,

More information

SMS Outbound. HTTP interface - v1.1

SMS Outbound. HTTP interface - v1.1 SMS Outbound HTTP interface - v1.1 Table of contents 1. Version history... 5 2. Conventions... 5 3. Introduction... 6 4. Application Programming Interface (API)... 7 5. Gateway connection... 9 5.1 Main

More information

FaxCore API Reference A web based API for sending, receiving and managing faxes through the FaxCore network.

FaxCore API Reference A web based API for sending, receiving and managing faxes through the FaxCore network. FaxCore API Reference A web based API for sending, receiving and managing faxes through the FaxCore network. P a g e 2 Contents API Overview... 3 Authentication... 3 SendFax... 4 FaxStatus... 5 GetFaxList...

More information

SMSCenter. SMSCenter API

SMSCenter. SMSCenter API www.smscenter.co.il SMSCenter Multi Messaging Software Server SMS / MMS / IVR / WAP Push SMSCenter API SMSCenter API The software described in this book is furnished under a license agreement and may be

More information

WAVV 2005 Colorado Springs, CO. VSE.NET Programming. Handouts. Agenda. Page 1. .NET Programming Example with VSE

WAVV 2005 Colorado Springs, CO. VSE.NET Programming. Handouts. Agenda. Page 1. .NET Programming Example with VSE .NET Programming Example with VSE Chuck Arney illustro Systems International LLC carney@illustro.com Handouts Download a copy of this presentation www.illustro.com/conferences WAVV2005-2 Agenda Introduction

More information

SMS4BD Gateway Integration

SMS4BD Gateway Integration SMS4BD Gateway Integration TECHNICAL DOCUMENTATION v3.0 This document is intended to help IT experts in integration of SMS gateway of SMS4BD. Any alteration of this document without permission is strictly

More information

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9 Table of Contents Introduction... 2 Requirements... 2 Connecting to Forthnet Mobile Platform... 2 Message submission... 3 Client Request... 3 Parameters... 4 Parameter user... 4 Parameter pass... 4 Parameter

More information

HTTP API. https://www.smsn.gr. Table of Contents

HTTP API. https://www.smsn.gr. Table of Contents HTTP API https://www.smsn.gr Table of Contents Send SMS...2 Query SMS...3 Multiple Query SMS...4 Credits...5 Save Contact...5 Delete Contact...7 Delete Message...8 Email: sales@smsn.gr, Τηλ: 211 800 4200,

More information

GPIO SMS Remote Control and Monitoring Software

GPIO SMS Remote Control and Monitoring Software GPIO SMS Remote Control and Monitoring Software The GPIO software allows the user to remotely control physically connected hardware e.g. turn lights on / off via SMS message sent from a mobile/cell phone

More information

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1).

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1). Quriiri HTTP MT API This document describes the Quriiri HTTP MT API version 1 (v1). Sending messages Request types Security Request parameters Request examples JSON POST GET Response JSON response example

More information

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP / HTTPS

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP / HTTPS Way2mint SMS Mobile Terminate (MT) API Guide for HTTP / HTTPS 10/1/2009 Way2mint Services Prepared by: Mohit Jaswani Copyright Way2mint Services The content of this document are copyright and remain the

More information

EXTERNAL SERVICES DOCUMENTATION

EXTERNAL SERVICES DOCUMENTATION EXTERNAL SERVICES DOCUMENTATION Last updated: 03/15/16 The purpose of this document is to provide HawleyLambert clients documentation on how to access available RESTful External Services. A developer should

More information

API Spec Sheet For Version 2.5

API Spec Sheet For Version 2.5 INTRODUCTION The Wholesale SMS API is ideally suited for sending individual sms messages and/or automated responses through our premium routes. To send bulk messages through the API you can set your server

More information

EBULKSMS

EBULKSMS EBULKSMS www.ebulksms.com (Customized Text Messaging System) API Specification Doc Version Date Author Description 1.0 01-August-2013 Dr Fox Initial draft 1.1 14-July-2017 Dr Fox Get API Key Index SEND

More information

API USER GUIDE MARKETING MESSAGES & BROADCASTS

API USER GUIDE MARKETING MESSAGES & BROADCASTS API USER GUIDE MARKETING MESSAGES & BROADCASTS General Overview So, what do you want to do? 3 3 Marketing Messages with replies 4 First, let s send the messages Advanced API developers note Next, let s

More information

text2reach2 SMS API Sep 5, 2013 v1.1 This document describes application interface (API) between SMS service provider (SP) and SMS gateway (SMSGW).

text2reach2 SMS API Sep 5, 2013 v1.1 This document describes application interface (API) between SMS service provider (SP) and SMS gateway (SMSGW). text2reach2 SMS API Sep 5, 2013 v1.1 This document describes application interface (API) between SMS service provider (SP) and SMS gateway (SMSGW). Table of Contents API Interface Types...3 Bulk SMS interface...3

More information

emkt Browserless Coding For C#.Net and Excel

emkt Browserless Coding For C#.Net and Excel emkt Browserless Coding For C#.Net and Excel Browserless Basic Instructions and Sample Code 7/23/2013 Table of Contents Using Excel... 3 Configuring Excel for sending XML to emkt... 3 Sandbox instructions

More information

Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation)

Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation) Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation) Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation) Table of Contents Part I Introduction

More information

Authentify SMS Gateway

Authentify SMS Gateway RSA SMS HTTP Plug-In Implementation Guide Last Modified: December 2 nd, 2014 Partner Information Product Information Partner Name Web Site Product Name Product Description Authentify www.authentify.com

More information

SMS Outbound. SMTP interface - v1.1

SMS Outbound. SMTP interface - v1.1 SMS Outbound SMTP interface - v1.1 Table of contents 1. Version history... 5 2. Conventions... 5 3. Introduction... 6 4. Gateway connection... 7 4.1 E-mail message format... 7 4.2 Header section... 7 4.3

More information

KWizCom Corporation. imush. Information Management Utilities for SharePoint. Printing Feature. Application Programming Interface (API)

KWizCom Corporation. imush. Information Management Utilities for SharePoint. Printing Feature. Application Programming Interface (API) KWizCom Corporation imush Information Management Utilities for SharePoint Printing Feature Application Programming Interface (API) Copyright 2005-2014 KWizCom Corporation. All rights reserved. Company

More information

Fax Broadcast Web Services

Fax Broadcast Web Services Fax Broadcast Web Services Table of Contents WEB SERVICES PRIMER... 1 WEB SERVICES... 1 WEB METHODS... 1 SOAP ENCAPSULATION... 1 DOCUMENT/LITERAL FORMAT... 1 URL ENCODING... 1 SECURE POSTING... 1 FAX BROADCAST

More information

United States Postal Service Web Tool Kit User s Guide

United States Postal Service Web Tool Kit User s Guide United States Postal Service Web Tool Kit User s Guide A Technical Guide to HTTP Connection DLL (Revised 2/22/00) To HTTP Connection DLL Customers This release of the Web Tool Kit User s Guide for HTTP

More information

Wired 2 Wireless Technology Solutions API Help Document Copyright Introduction. 2. Parameter list

Wired 2 Wireless Technology Solutions API Help Document Copyright Introduction. 2. Parameter list 1. Introduction Wired 2 Wireless Technology Solutions offers an easy way to send and receive messages via its built-in webserver using HTTP. In this document you will learn how to send SMS, check delivery

More information

THE SMS FACTORY. SMS - HTTP API v1.1. Oct 2014

THE SMS FACTORY. SMS - HTTP API v1.1. Oct 2014 THE SMS FACTORY SMS - HTTP API v1.1 Oct 2014 Introduction Creation of a new SMS campaign involves 3 steps: 1. Creating the Campaign Header. 2. Adding messages to the Message Queue associated to the campaign

More information

Ciphermail Gateway PDF Encryption Setup Guide

Ciphermail Gateway PDF Encryption Setup Guide CIPHERMAIL EMAIL ENCRYPTION Ciphermail Gateway PDF Encryption Setup Guide April 4, 2016, Rev: 5454 Copyright c 2008-2016, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Portal 4 3 PDF encryption

More information

Lead Delivery Options. Your leads sent your way. Lead delivery options for clients and partners.

Lead Delivery Options. Your leads sent your way. Lead delivery options for clients and partners. Lead Delivery Options Your leads sent your way. Lead delivery options for clients and partners. Introduction We know how important quality and timely leads are for your business. That s why we offer a

More information

SMS-Bulk Gateway HTTP interface

SMS-Bulk Gateway HTTP interface SMS-Bulk Gateway HTTP interface Release 3.0.0 2001-2017 SmsItaly.Com 1 1 Introduction 1.1 Summary Only authorized users can submit SMS messages for delivery by one of the following methods: - Internet

More information

SMS Driver User Guide. Technical Document. AX 3.x.108 SMS Driver User Guide. Dec 13, Dec 13, 2017

SMS Driver User Guide. Technical Document. AX 3.x.108 SMS Driver User Guide. Dec 13, Dec 13, 2017 Technical Document AX 3.x.108 SMS Driver User Guide Dec 13, 2017 Dec 13, 2017 http://www.maxlinesolutions.com Page 1 of 19 SMS Driver User Guide 13 Dec 2017 SMS Driver User Guide... 2 Capability... 3 Platform...

More information

Elevate Web Builder Modules Manual

Elevate Web Builder Modules Manual Table of Contents Elevate Web Builder Modules Manual Table Of Contents Chapter 1 - Getting Started 1 1.1 Creating a Module 1 1.2 Handling Requests 3 1.3 Custom DataSet Modules 8 Chapter 2 - Component Reference

More information

COMP 321: Introduction to Computer Systems

COMP 321: Introduction to Computer Systems Assigned: 3/29/18, Due: 4/19/18 Important: This project may be done individually or in pairs. Be sure to carefully read the course policies for assignments (including the honor code policy) on the assignments

More information

We currently are able to offer three different action types:

We currently are able to offer three different action types: SMS Inbound Introduction SMS Inbound provides a simple to use interface for receiving inbound MMS messages. Inbound Message Actions Inbound Message Actions in SMS Inbound are things that our system can

More information

Table of Contents Web Service Specification (version 1.5)

Table of Contents Web Service Specification (version 1.5) Table of Contents Web Service Specification (version 1.5) Introduction... 3 Add TPS Screening to your Website or Application... 3 Getting Started... 3 What you can do with our API... 3 Be careful......

More information

Composer Help. Web Request Common Block

Composer Help. Web Request Common Block Composer Help Web Request Common Block 7/4/2018 Web Request Common Block Contents 1 Web Request Common Block 1.1 Name Property 1.2 Block Notes Property 1.3 Exceptions Property 1.4 Request Method Property

More information

Login to the FRITZ!Box Web Interface

Login to the FRITZ!Box Web Interface Login to the FRITZ!Box Web Interface Login Procedure and Session IDs in the FRITZ!Box Web Interface Login to a FRITZ!Box can take place in three basic ways: With user name and password With just a passport

More information

Redrabbit Cloud-based Communications Platform SMS APIs

Redrabbit Cloud-based Communications Platform SMS APIs Redrabbit Cloud-based Communications Platform SMS APIs Prepared by US Office 8530 Crows Ct. Tampa, Florida 33647 Jordan Office Adnan Halawa Center, Industrial Road Biader Wadi AL-Seer Amman Jordan www.javna.com

More information

Requirement Document v1.2 WELCOME TO CANLOG.IN. API-Key Help Document. Version SMS Integration Document

Requirement Document v1.2 WELCOME TO CANLOG.IN. API-Key Help Document. Version SMS Integration Document WELCOME TO CANLOG.IN API-Key Help Document Version 1.2 http://www.canlog.in SMS Integration Document Integration 1. Purpose SMS integration with Canlog enables you to notify your customers and agents via

More information

Report API v1.0 Splio Customer Platform

Report API v1.0 Splio Customer Platform Report API v1.0 Splio Customer Platform 2018-06-25 SPLIO Customer Platform - REPORT API 1.0 - EN - 2018-06-25 - v1.docx Table of Contents Introduction... 3 Access... 3 Base URL... 3 Europe hosting... 3

More information

The following are required to duplicate the process outlined in this document.

The following are required to duplicate the process outlined in this document. Technical Note ClientAce WPF Project Example 1. Introduction Traditional Windows forms are being replaced by Windows Presentation Foundation 1 (WPF) forms. WPF forms are fundamentally different and designed

More information

Technical Guide. REST API for Mobile Outbound SMS

Technical Guide. REST API for Mobile Outbound SMS Technical Guide REST API for Mobile Outbound SMS Munich +49 89 202 451 100 Singapore +65 6478 3020 London +44 207 436 0283 San Francisco +1 415 527 0903 sales@tyntec.com www.tyntec.com Table of Contents

More information

SMS Relay. API Documentation SPLIO - SPRING Contact and Campaign SMS Relay API - EN v1.2.docx

SMS Relay. API Documentation SPLIO - SPRING Contact and Campaign SMS Relay API - EN v1.2.docx SMS Relay API Documentation 2017-09-07 Summary Introduction... 3 Access... 3 Base URL... 3 Europe hosting... 3 Asia hosting... 3 Authentication... 3 Single call... 4 Bulk call... 4 Transactional messages...

More information

ERMES. Technical Specification for ex MPAY services integration. version /10/2018

ERMES. Technical Specification for ex MPAY services integration. version /10/2018 ERMES Technical Specification for ex MPAY services integration version 1.7 26/10/2018 Summary 1.Changes...3 2.Introduction...4 2.1.Glossary...4 3.ERMES API Overview...5 3.1.Protocol...6 4.ERMES API...9

More information

Starting with FRITZ!OS 5.50 a session ID is also required in all three cases.

Starting with FRITZ!OS 5.50 a session ID is also required in all three cases. Login to the FRITZ!Box Web Interface Login Procedure and Session IDs in the FRITZ!Box Web Interface Login to a FRITZ!Box can take place in three basic ways: With user name and password With just a passport

More information

In order to create your proxy classes, we have provided a WSDL file. This can be located at the following URL:

In order to create your proxy classes, we have provided a WSDL file. This can be located at the following URL: Send SMS via SOAP API Introduction You can seamlessly integrate your applications with aql's outbound SMS messaging service via SOAP using our SOAP API. Sending messages via the SOAP gateway WSDL file

More information

HWg-STE: Portal implementation manual version 4.8.1

HWg-STE: Portal implementation manual version 4.8.1 HWg-STE: Portal implementation manual version 4.8.1 Push HWg-STE firmware you can download from: http://new.hwg.cz/en/hwg-ste-portal HWg-PDMS: Portal supported from version 1.4.6 1 / 18 (1) Connect & power-on

More information

Connect Media Bulk SMS API Documentation

Connect Media Bulk SMS API Documentation Connect Media Bulk SMS API Documentation All requests are submitted through the POST Method Base URL: http://www.connectmedia.co.ke/user-board/?api Information About Parameters: PARAMETERS username Your

More information

Remote Invocation. Today. Next time. l Overlay networks and P2P. l Request-reply, RPC, RMI

Remote Invocation. Today. Next time. l Overlay networks and P2P. l Request-reply, RPC, RMI Remote Invocation Today l Request-reply, RPC, RMI Next time l Overlay networks and P2P Types of communication " Persistent or transient Persistent A submitted message is stored until delivered Transient

More information

Web Service API for. Document version 0.5 (2015-8) (Draft)

Web Service API for. Document version 0.5 (2015-8) (Draft) Web Service API for Document version 0.5 (2015-8) (Draft) Team Mobilis Co., Ltd Email: technical@teammobilis.com Technical hot line: 089-668-9338 (Vorapoap) 2 Contents HOW TO CREATE WEB APP USERNAME/PASSWORD?...

More information

Standard HTTP format (application/x-www-form-urlencoded)

Standard HTTP format (application/x-www-form-urlencoded) API REST Basic concepts Requests Responses https://www.waboxapp.com/api GET / Standard HTTP format (application/x-www-form-urlencoded) JSON format HTTP 200 code and success field when action is successfully

More information

API SMS Sending 1. ACCOUNT METHOD GET

API SMS Sending 1. ACCOUNT METHOD GET API SMS Sending Identidad Telecom This guide contains support material and information property of Identidad Telecom Technologies. This material can be printed or photocopied for its intended us, and the

More information

Response: Note: Please define Dynamic Value in ##Field## The following are the parameters used: For Unicode Message:

Response: Note: Please define Dynamic Value in ##Field## The following are the parameters used: For Unicode Message: For Unicode Message: Promotional Unicode Message API http://cloud.smsindiahub.in/vendorsms/pushsms.aspx?user=youruserid&password=yourpassword& msisdn=919898xxxxxx&sid=senderid&msg=पर षण स द श &fl=0&dc=8

More information

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 For help, contact support@linkmobility.com The most up-to-date version of this document is available at http://www.linkmobility.com/developers/

More information

SMS Submit Interface description HTTP Version 1.5

SMS Submit Interface description HTTP Version 1.5 SMS Submit Interface description HTTP Version 1.5 This document is intended for application developers with knowledge about the HTTP protocol. Document history Version Description 1.5 Spelling error corrected

More information

Report Exec Enterprise CodeRed Integration

Report Exec Enterprise CodeRed Integration Report Exec Enterprise CodeRed Integration Contents Overview... 2 Setting up CodeRed... 2 Enterprise Setup... 2 Dispatch Setup... 3 Accessing CodeRed... 4 CodeRed in Enterprise... 4 CodeRed in Dispatch...

More information

New Dashboard - Help Screens

New Dashboard - Help Screens New Dashboard - Help Screens Welcome to the new Panacea Dashboard. This document aims to provide you with concise explanations of the menu system and features available to you as a Panacea user account

More information

Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016

Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016 Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016 page 1 Revision history Version Date Details Writer 1.0.0 10/16/2014 First draft Sally Han 1.1.0 11/13/2014 Revised v.1.1

More information

SMS API TECHNICAL SPECIFICATION

SMS API TECHNICAL SPECIFICATION SMS API TECHNICAL SPECIFICATION Version 2.1 Provision of the Click SMS Gateway Service is dependent upon compliance with the specifications contained in this document. Although Click SMS has taken reasonable

More information

BulkSMS Integration. Interface Description A Developer s Guide. Document Revision History. Date Revision Revised By.

BulkSMS Integration. Interface Description A Developer s Guide. Document Revision History. Date Revision Revised By. BulkSMS Integration Interface Description A Developer s Guide Document Revision History Date Revision Revised By July 3 rd, 2013 Mobile Marketing 1 TABLE OF CONTENTS Table of Contents... i 1 Introduction...

More information

Standard HTTP format (application/x-www-form-urlencoded)

Standard HTTP format (application/x-www-form-urlencoded) API REST Basic concepts Requests Responses https://www.waboxapp.com/api Standard HTTP format (application/x-www-form-urlencoded) JSON format HTTP 200 code and success field when action is successfully

More information

API Integration Guide

API Integration Guide API Integration Guide Introduction SULU Mobile Solutions API is a programmable SMS message service. It enables your in-house applications to have fully featured SMS capabilities using your favorite programming

More information

Bulk HTTP API Specification

Bulk HTTP API Specification Bulk HTTP API Specification (Document Version 1.0) (This Document gives details on how to send messages via the Bulk HTTP API for the CloudSMS Gateway) HTTP API to submit messages to CloudSMS http://developers.cloudsms.com.ng/api.php?userid=xxxx&password=yyyyy&type=y&destinati

More information

Requirement Document v1.2 WELCOME TO CANLOG.IN. API-Key Help Document. Version SMS Integration Document

Requirement Document v1.2 WELCOME TO CANLOG.IN. API-Key Help Document. Version SMS Integration Document WELCOME TO CANLOG.IN API-Key Help Document Version 1.2 http://www.canlog.in SMS Integration Document Integration 1. Purpose SMS integration with Canlog enables you to notify your customers and agents via

More information

BCBST Secure File Gateway Instructions (HTTPS)

BCBST Secure File Gateway Instructions (HTTPS) BCBST Secure File Gateway Instructions (HTTPS) 1 Table of Contents New BCBST Secure File Gateway pg 3 Upload file to BCBST pg 4 Search Function pg 12 Download file from BCBST pg 13 Subscribe to e-mail

More information

Configuring Call Home for Cisco Integrated Services Routers

Configuring Call Home for Cisco Integrated Services Routers Configuring Call Home for Cisco Integrated Services Routers First Published: November 18, 2011 Revised: April 11, 2012, The Call Home feature provides e-mail-based and web-based notification of critical

More information

Course Topics. The Three-Tier Architecture. Example 1: Airline reservations. IT360: Applied Database Systems. Introduction to PHP

Course Topics. The Three-Tier Architecture. Example 1: Airline reservations. IT360: Applied Database Systems. Introduction to PHP Course Topics IT360: Applied Database Systems Introduction to PHP Database design Relational model SQL Normalization PHP MySQL Database administration Transaction Processing Data Storage and Indexing The

More information

REST SERVICE. Web Services API Version 1.5

REST SERVICE. Web Services API Version 1.5 REST SERVICE Web Services API Version 1.5 The information contained within this document is the property of PageOne Communications Ltd and may not be copied used or disclosed in whole or in part, except

More information

Your leads. Your way. Lead delivery options for BuyerZone clients and partners.

Your leads. Your way. Lead delivery options for BuyerZone clients and partners. Your leads. Your way. Lead delivery options for BuyerZone clients and partners. Lead delivery from BuyerZone We know how important quality and timely leads are for your business. That s why we offer a

More information

Quenbec inc # henri bourassa H3L-3N3 Montreal, QC,Canada Toll free: Mobile Https://canadiansms.

Quenbec inc # henri bourassa H3L-3N3 Montreal, QC,Canada Toll free: Mobile Https://canadiansms. HTTP PROTOCOL SPECIFICATIONS VERSION 3.0 Contents Http api of canadiansms.com.....what to find in this http api...how to send sms....how to check your credits.....how to download your reports....how to

More information

HappyFox API Technical Reference

HappyFox API Technical Reference HappyFox API Technical Reference API Version 1.0 Document Version 0.1 2011, Tenmiles Corporation Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

More information

Excel-SMS Enotified. Excel-SMS Help Manual

Excel-SMS Enotified. Excel-SMS Help Manual Enotified Help Manual 7/7/2012 Contents 1. What is the excel-sms User Guide?... 2 2. Getting Started with excel-sms... 2 3. About the excel-sms Interface... 3 4. How to Send an SMS... 4 4.1 Sending One

More information

RSA Ready Implementation Guide for

RSA Ready Implementation Guide for RSA Ready Implementation Guide for Spryng Peter Waranowski, RSA Partner Engineering Last Modified: April 20 th, 2016 Solution Summary RSA Authentication Manager can be

More information

HTTP API-HELP DOCUMENT

HTTP API-HELP DOCUMENT PARAMETER DEFINITION S.NO PARAMETER PARAMETER VALUE PARAMETER NAME DESCRIPTION 1 User Test User User name of the 2 Passwd Test Password Password of the account 3 Sid DEMO Sender id Destination Mobile 4

More information

JSON POST WITH PHP IN ANGULARJS

JSON POST WITH PHP IN ANGULARJS JSON POST WITH PHP IN ANGULARJS The POST method is used to insert the data. In AngularJS, we should post the form data in JSON format to insert into the PHP file. The PHP server side code used to get the

More information

Message parameter details

Message parameter details HTTP API for Message Forwarding (SMS India Hub Gateway Version 1.1) Overview... 2 Introduction... 2 Messaging... 3 Message parameter details... 4-7 Error Codes... 8 Contact Details... 9 Overview This document

More information

Configuring Call Home

Configuring Call Home The Call Home feature provides e-mail-based and web-based notification of critical system events. A versatile range of message formats are available for optimal compatibility with pager services, standard

More information

Appendix A Programkod

Appendix A Programkod Appendix A Programkod ProgramForm.cs using System; using System.Text; using System.Windows.Forms; using System.Net; using System.IO; using System.Text.RegularExpressions; using System.Collections.Generic;

More information

MxVision WeatherSentry Web Services REST Programming Guide

MxVision WeatherSentry Web Services REST Programming Guide MxVision WeatherSentry Web Services REST Programming Guide DTN 11400 Rupp Drive Minneapolis, MN 55337 00.1.952.890.0609 This document and the software it describes are copyrighted with all rights reserved.

More information

Professional Services. Desktop Wallboard. Programmer Guide. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions

Professional Services. Desktop Wallboard. Programmer Guide. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions Professional Services Desktop Wallboard Programmer Guide Release 6.1 2016 Avaya Inc. Proprietary Use Pursuant to Company Instructions Copyright 2016 Avaya Inc. All Rights Reserved Printed in USA Notice

More information

Security Guide. Configuration of Permissions

Security Guide. Configuration of Permissions Guide Configuration of Permissions 1 Content... 2 2 Concepts of the Report Permissions... 3 2.1 Security Mechanisms... 3 2.1.1 Report Locations... 3 2.1.2 Report Permissions... 3 2.2 System Requirements...

More information

SONERA OPERATOR SERVICE PLATFORM OPAALI PORTAL SMS. FREQUENTLY ASKED QUESTIONS, version 2.0

SONERA OPERATOR SERVICE PLATFORM OPAALI PORTAL SMS. FREQUENTLY ASKED QUESTIONS, version 2.0 SONERA OPERATOR SERVICE PLATFORM FREQUENTLY ASKED QUESTIONS, version 2.0 OPAALI PORTAL Q: Why Registration link to Opaali portal does not work currently, HTTP Operation Forbidden error is shown? A: Sonera's

More information

Information Network Systems The application layer. Stephan Sigg

Information Network Systems The application layer. Stephan Sigg Information Network Systems The application layer Stephan Sigg Tokyo, November 15, 2012 Introduction 04.10.2012 Introduction to the internet 11.10.2012 The link layer 18.10.2012 The network layer 25.10.2012

More information

Security Guide. Configuration of Report and System Permissions

Security Guide. Configuration of Report and System Permissions Guide Configuration of Report and System Permissions 1 Content... 2 2 Concepts of the Report Permissions... 2 2.1 Mechanisms... 3 2.1.1 Report Locations... 3 2.1.2 Report Permissions... 3 2.2 System Requirements...

More information

Web Search An Application of Information Retrieval Theory

Web Search An Application of Information Retrieval Theory Web Search An Application of Information Retrieval Theory Term Project Summer 2009 Introduction The goal of the project is to produce a limited scale, but functional search engine. The search engine should

More information

Smart Call Home Quick Start Configuration Guide

Smart Call Home Quick Start Configuration Guide Smart Call Home Quick Start Configuration Guide Smart Call Home offers proactive diagnostics and real-time alerts on click Cisco devices, which provides higher network availability and increased operational

More information

Overview Introduction Messaging Error Codes Message parameter details Contact Details... 7

Overview Introduction Messaging Error Codes Message parameter details Contact Details... 7 HTTP API for Message Forwarding (SMS Lane Gateway Version 1.1) Overview... 2 Introduction... 2 Messaging... 3 Error Codes... 4 Message parameter details... 5-6 Contact Details... 7 1/7 Overview This document

More information

Revision: 50 Revision Date: :43 Author: Oliver Zabel. GTX Mobile Messaging SMS Gateway Interface Simple HTTP API Manual

Revision: 50 Revision Date: :43 Author: Oliver Zabel. GTX Mobile Messaging SMS Gateway Interface Simple HTTP API Manual Revision: 50 Revision Date: 09.06.17 14:43 Author: Oliver Zabel GTX Mobile Messaging SMS Gateway Interface Simple HTTP API Manual Table of Contents Table of Contents... 2 Introduction... 3 Sending SMS...

More information

Course Topics. IT360: Applied Database Systems. Introduction to PHP

Course Topics. IT360: Applied Database Systems. Introduction to PHP IT360: Applied Database Systems Introduction to PHP Chapter 1 and Chapter 6 in "PHP and MySQL Web Development" Course Topics Relational model SQL Database design Normalization PHP MySQL Database administration

More information

Configuring Health Monitoring

Configuring Health Monitoring CHAPTER1 This chapter describes how to configure health monitoring on the ACE to track the state of a server by sending out probes. Also referred to as out-of-band health monitoring, the ACE verifies the

More information

CSE361 Web Security. Attacks against the server-side of web applications. Nick Nikiforakis

CSE361 Web Security. Attacks against the server-side of web applications. Nick Nikiforakis CSE361 Web Security Attacks against the server-side of web applications Nick Nikiforakis nick@cs.stonybrook.edu Threat model In these scenarios: The server is benign The client is malicious The client

More information

Installation and Usage Guide

Installation and Usage Guide SMS Master for SAP Business One Easily send SMS and Email from within SBO Installation and Usage Guide December 2010 page 1/15 Table of Cotent. 1 General 3 2. How do I download SMS Master add-on? 3. 3

More information